Completed
Branch master (93a1f2)
by Daniel
01:17
created

require.test.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 9.4285
1
import chai from 'chai';
2
3
var strman = require('../transpiler/strman');
4
var isString = strman.isString;
5
6
describe('Usage with require', () => {
7
    describe('#require', () => {
8
        it('should be true when value is true', () => {
9
            chai.expect(isString('foo')).to.equal(true);
10
        });
11
    });
12
});
13